71ceae7c10e35c91b6132f17f153199962f74aea,src/net/java/sip/communicator/impl/neomedia/jmfext/media/renderer/audio/PortAudioRenderer.java,PortAudioRenderer,open,#,119
Before Change
.getOutputStream(
deviceIndex,
inputFormat.getSampleRate(),
inputFormat.getChannels());
}
catch (PortAudioException paex)
{
After Change
public synchronized void open()
throws ResourceUnavailableException
{
if (stream == 0)
{
int deviceIndex = DataSource.getDeviceIndex(getLocator());
AudioFormat inputFormat = this.inputFormat;
int channels = inputFormat.getChannels();
if (channels == Format.NOT_SPECIFIED)
channels = 1;
long sampleFormat